.subtitle,
.title {
  margin: 0;
  align-self: stretch;
  position: relative;
  line-height: 120%;
  font-family: inherit;
}
.title {
  font-size: inherit;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.subtitle {
  font-size: var(--subtitle-size);
  font-weight: 400;
}
.text-content-title {
  /* width: 151px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-200);
}
.star-icon {
  height: 16px;
  width: 16px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: none;
  min-height: 16px;
}
.button1 {
  position: relative;
  font-size: var(--single-line-body-base-size);
  line-height: 100%;
  font-family: var(--single-line-body-base);
  color: var(--text-default-default);
  text-align: left;
  display: inline-block;
  min-width: 51px;
}
.x-icon {
  height: 16px;
  width: 16px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: none;
  min-height: 16px;
}
.button {
  cursor: pointer;
  border: 1px solid var(--border-neutral-secondary);
  padding: var(--padding-3xs) var(--padding-2xs);
  background-color: var(--background-neutral-tertiary);
  flex: 1;
  border-radius: var(--radius-200);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-200);
}
.star-icon1 {
  height: 16px;
  width: 16px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: none;
  min-height: 16px;
}
.button3 {
  position: relative;
  font-size: var(--single-line-body-base-size);
  line-height: 100%;
  font-family: var(--single-line-body-base);
  color: var(--text-brand-on-brand);
  text-align: left;
  display: inline-block;
  min-width: 51px;
}
.x-icon1 {
  height: 16px;
  width: 16px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: none;
  min-height: 16px;
}
.button-group,
.button2,
.hero-image {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.button2 {
  cursor: pointer;
  border: 1px solid var(--background-brand-default);
  /* padding: var(--padding-3xs) var(--padding-2xs); */
  /* background-color: var(--background-brand-default); */
  flex: 1;
  border-radius: var(--radius-200);
  overflow: hidden;
  gap: var(--space-200);

  /* padding: 0.75rem 1.3125rem;
  background: var(--f-primary-btn-bg-color, #000000);
  color: var(--f-primary-btn-text-color, #FFFFFF); */

}
.button-group,
.hero-image {
  width: 166px;
  gap: var(--space-400);
}
.hero-image {
  width: 100%;
  position: absolute;
  top: calc(50% - 400px);
  left: calc(90px);
  flex-direction: column;
  padding: var(--space-4000) 20px;
  box-sizing: border-box;
  gap: var(--space-800);
  background-image: url(./public/hero-image@3x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  font-size: var(--title-hero-size);
  color: var(--text-utilities-text-on-overlay);
  font-family: var(--single-line-body-base);
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 58px;
    line-height: 69px;
  }
  .subtitle {
    font-size: 26px;
    line-height: 31px;
  }
}
@media screen and (max-width: 450px) {
  .title {
    font-size: 43px;
    line-height: 52px;
  }
  .subtitle {
    font-size: 19px;
    line-height: 23px;
  }
}


